home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wsc4c21.zip / SIMPLE16._M_ < prev    next >
Text File  |  1997-05-22  |  725b  |  32 lines

  1. #
  2. # Microsoft makefile for SIMPLE [Win16]
  3. # Requires WSC16.DLL & WSC16.LIB
  4. #
  5. # To use: "NMAKE SIMPLE16._M_"
  6. #
  7.  
  8. CCFLAGS = -c -AS -G2sw -Oas -Zp
  9.  
  10. simple.exe: simple.res simple.obj simple.def sioerror.obj wsc16.lib \
  11.            about.obj line.obj paint.obj
  12.     link /NOD /NOE  @simple.rsp,,,libw slibcew wsc16 ,simple.def;
  13.     rc simple.res
  14.  
  15. simple.res: simple.rc simple.h
  16.     rc -r simple.rc
  17.  
  18. about.obj: about.c about.h
  19.    cl $(CCFLAGS)  about.c
  20.  
  21. line.obj: line.c line.h wsc.h
  22.     cl $(CCFLAGS)  line.c
  23.  
  24. paint.obj: paint.c paint.h wsc.h
  25.     cl $(CCFLAGS)  paint.c
  26.  
  27. simple.obj: simple.c simple.h
  28.    cl $(CCFLAGS)  simple.c
  29.  
  30. sioerror.obj: sioerror.c sioerror.h wsc.h
  31.    cl $(CCFLAGS)  sioerror.c
  32.